net/http.http2clientConnPool.conns (field)

12 uses

	net/http (current package)
		h2_bundle.go#L774: 	conns        map[string][]*http2ClientConn // key is host:port
		h2_bundle.go#L803: 		for _, cc := range p.conns[addr] {
		h2_bundle.go#L889: 	for _, cc := range p.conns[key] {
		h2_bundle.go#L941: 	for _, v := range p.conns[key] {
		h2_bundle.go#L946: 	if p.conns == nil {
		h2_bundle.go#L947: 		p.conns = make(map[string][]*http2ClientConn)
		h2_bundle.go#L952: 	p.conns[key] = append(p.conns[key], cc)
		h2_bundle.go#L960: 		vv, ok := p.conns[key]
		h2_bundle.go#L966: 			p.conns[key] = newList
		h2_bundle.go#L968: 			delete(p.conns, key)
		h2_bundle.go#L983: 	for _, vv := range p.conns {